home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / xmms / libxmms / formatter.h < prev    next >
C/C++ Source or Header  |  2005-12-20  |  411b  |  17 lines

  1. #ifndef XMMS_FORMATTER_H
  2.  
  3. #define XMMS_FORMATTER_H
  4.  
  5. typedef struct {
  6.     gchar *values[256];
  7. } Formatter;
  8.  
  9. Formatter *xmms_formatter_new(void);
  10. void xmms_formatter_destroy(Formatter *formatter);
  11. void xmms_formatter_associate(Formatter *formatter, guchar id, gchar *value);
  12. void xmms_formatter_dissociate(Formatter *formatter, guchar id);
  13. gchar *xmms_formatter_format(Formatter *formatter, gchar *format);
  14.  
  15. #endif
  16.  
  17.